home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / suplib / addhead.c next >
C/C++ Source or Header  |  1992-10-25  |  243b  |  13 lines

  1.  
  2. #include <suplib/lists.h>
  3.  
  4. void
  5. AddTail(struct List *list, struct Node *node)
  6. {
  7.     node->ln_Succ = (struct Node *)&list->lh_Tail;
  8.     node->ln_Pred = list->lh_TailPred;
  9.     list->lh_TailPred->ln_Succ = node;
  10.     list->lh_TailPred = node;
  11. }
  12.  
  13.